net/http.http2requestParam.header (field)

13 uses

	net/http (current package)
		h2_bundle.go#L5761: 	rp.header = make(Header)
		h2_bundle.go#L5763: 		rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value)
		h2_bundle.go#L5766: 		rp.authority = rp.header.Get("Host")
		h2_bundle.go#L5774: 		if vv, ok := rp.header["Content-Length"]; ok {
		h2_bundle.go#L5793: 	header                  Header
		h2_bundle.go#L5804: 	needsContinue := rp.header.Get("Expect") == "100-continue"
		h2_bundle.go#L5806: 		rp.header.Del("Expect")
		h2_bundle.go#L5809: 	if cookies := rp.header["Cookie"]; len(cookies) > 1 {
		h2_bundle.go#L5810: 		rp.header.Set("Cookie", strings.Join(cookies, "; "))
		h2_bundle.go#L5815: 	for _, v := range rp.header["Trailer"] {
		h2_bundle.go#L5830: 	delete(rp.header, "Trailer")
		h2_bundle.go#L5855: 		Header:     rp.header,
		h2_bundle.go#L6638: 			header:    http2cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE